/ tsconfig.json
tsconfig.json
1 { 2 "compilerOptions": { 3 "target": "ESNext", 4 5 "emitDecoratorMetadata": true, 6 "experimentalDecorators": true, 7 8 "module": "ESNext", 9 "moduleResolution": "Bundler", 10 11 "paths": { 12 "~/*": ["./src/*"], 13 "@!/*": ["./tests/*"], 14 "crous-mobile": ["./src/index.ts"] 15 }, 16 17 "strict": true, 18 "noEmit": true, 19 20 "stripInternal": true, 21 "allowSyntheticDefaultImports": true, 22 "esModuleInterop": true, 23 "isolatedModules": true, 24 "skipLibCheck": true 25 }, 26 27 "include": ["src", "examples", "tests"], 28 "exclude": ["node_modules", "dist"] 29 }