-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
14 lines (14 loc) · 834 Bytes
/
tsconfig.json
File metadata and controls
14 lines (14 loc) · 834 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
"compilerOptions": {
"allowJs": true, // include .js and .jsx in project context (defaults to only .ts and .tsx)
"noEmit": true // turns off downlevel compiler
},
"files": ["www/main.js"], // list of explicit files to include in the project context. Highest priority.
"include": [], // list of folders or glob patterns to include in the project context.
"exclude": [], // list of folders or glob patterns to exclude. Overridden by files array.
"typeAcquisition": {
"enable": true, // Defaulted to "false" with a tsconfig. Enables better IntelliSense in JS.
"include": [ "jquery" ], // Specific libs to fetch .d.ts files that weren't picked up by ATA
"exclude": [ "node" ] // Specific libs to not fetch .d.ts files for
}
}