sass/tsconfig.json
Natalie Weizenbaum 23278f2c92
Use the URL type from the DOM definitions, not from Node (#3214)
The two aren't quite interchangeable: the Node definition has a few
more fields, which means that URLs created naively with `new URL()`
aren't assignable to that type.
2021-12-10 21:11:27 +00:00

13 lines
324 B
JSON

{
"extends": "./node_modules/gts/tsconfig-google.json",
"compilerOptions": {
"allowJs": true,
"rootDir": ".",
"lib": ["dom"],
"paths": {
"*": ["./tool/types/*"]
}
},
"include": ["accepted/**/*.ts", "proposal/**/*.ts", "spec/**/*.ts", "tool/**/*.ts", "test/**/*.ts", "js-api-doc/**/*.ts"]
}