-
-
Notifications
You must be signed in to change notification settings - Fork 277
Expand file tree
/
Copy pathtsconfig.scripts.json
More file actions
23 lines (23 loc) · 777 Bytes
/
tsconfig.scripts.json
File metadata and controls
23 lines (23 loc) · 777 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
/**
* This configuration is intended for the `scripts/` directory, both for linting and for editor
* TypeScript-related features.
*
* It's currently not actually used for that purpose, but it will be in a future PR.
*
* This is also extended by the `tsconfig.json` file in `scripts/create-package/`, which _is_
* actively used to support TypeScript-related editor features in that directory.
*/
"extends": "./tsconfig.base.json",
"compilerOptions": {
"baseUrl": "./",
"exactOptionalPropertyTypes": true,
"forceConsistentCasingInFileNames": true,
"lib": ["ES2020"],
"noEmit": true,
"noErrorTruncation": true,
"noUncheckedIndexedAccess": true
},
"include": ["./scripts/**/*.ts"],
"exclude": ["**/node_modules"]
}