webamp/tsconfig.json
2018-09-17 17:04:05 -07:00

18 lines
405 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"],
"exclude": ["node_modules", "**/*.spec.ts"]
}