webamp/tsconfig.json
2019-02-16 06:19:40 -08:00

18 lines
434 B
JSON

{
"compilerOptions": {
"moduleResolution": "node",
"module": "commonjs",
"target": "esnext",
"allowJs": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"strict": true,
"jsx": "preserve",
"noEmit": true,
"pretty": true
},
"include": ["js/**/*.js", "js/**/*.ts", "js/**/*.tsx"],
"exclude": ["node_modules", "**/*.spec.ts", "demo/built"]
}