jcwallet/tsconfig.json
2022-07-05 18:03:11 +08:00

24 lines
487 B
JSON

{
"compilerOptions": {
"module": "CommonJS",
"rootDir": "src",
"outDir": "build",
"lib": [ "dom", "es5", "es2015", "es2015.promise" ],
"target": "es5",
"sourceMap": false,
"experimentalDecorators": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"downlevelIteration": true
},
"exclude": [
"node_modules",
"library",
"local",
"temp",
"build",
"settings",
"dist"
]
}